home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo File Finder/Grouper Demonstrations
- echo.
- echo Each of the following demonstrations may involve lengthy disk searches.
- echo At any time during the search, you can interrupt it by pressing the [ESC]
- echo key. Also, the entire demo can be terminated by pressing [CONTROL]-C (^C)
- echo at one of the pause points.
- echo.
- echo The following demos are all in individual batch files which you can later
- echo go examine or customize to your own needs. Before and after each demo the
- echo name of the associated batch file will be displayed in brackets [].
- call presskey
- call rundemos do
- :: Files w/in last 10 minutes
- call do recent *: 10
- :: 1992 and 1980 files:
- call do year-nn 92
- call do year-nn 80
- :: Files before/after specified dates:
- call do since 5/1/93
- call do before 12/31/80
- :: 1992 Tax files:
- call do taxyearn 92
- cls
- echo This is the end of the demonstration. The demos can be run individually
- echo by running the appropriate batch file.
-